home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / shldemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  136 b   |  8 lines

  1. program ShlDemo;
  2. var
  3.   a: Integer;
  4. begin
  5.   a := 1 shl 7;  { yields 128 = 2 pow 7 }
  6.   shl (a, 4)  { same as `a := a shl 4' }
  7. end.
  8.